![]() ![]() |
9.5:H309204 Add the Accesskey for the links that was most often used.Improper designIn the example, there is no accesskey set up for [return to main page] super link. Improper design:
<P>strungstrung communication</P>
<P>
[<A href="linkto/ex.jsp">return to homepage</A>][<A href="linkto/ex.jsp">cellphone information</A>]
[<A href="linkto/ex.jsp">cellphone accessaries</A>][<A href="linkto/ex.jsp">guarantee information</A>]
</P>
End of example Proper demonstrationIn the A label the use of accesskey element provided accesskey which set the alt+C to be the accesskey for strungstrung communication [return to main page]. Proper example:
<P>strungstrung communication</P>
<P>
[<A accesskey="C" href="linkto/ex.jsp">return to homepage</A>]
[<A href="linkto/ex.jsp">cellphone information</A>]
[<A href="linkto/ex.jsp">cellphone accessaries</A>][<A href="linkto/ex.jsp">guarantee information</A>]
</P>
End of example |